home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 April
/
CHIP CD (4 - 2007).iso
/
beeld
/
3d
/
ArtOfIllusion24-Mac.dmg
/
Art of Illusion
/
ArtOfIllusion.jar
/
bsh
/
commands
/
cd.bsh
< prev
next >
Wrap
Text File
|
2005-05-23
|
388b
|
20 lines
/**
Change working directory for dir(), etc. commands (like Unix cd)
*/
bsh.help.cd = "usage: cd( path )";
/*
Additions by Kevin Raulerson, http://www.spin.com.mx/~kevinr/
*/
void cd( String pathname )
{
this.file = pathToFile( pathname );
if ( file.exists() && file.isDirectory() )
bsh.cwd = file.getCanonicalPath();
else
print( "No such directory: "+pathname);
}